home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / WNDCLASS.H < prev   
Encoding:
C/C++ Source or Header  |  1995-07-19  |  843 b   |  31 lines

  1. //==================================
  2. // SHOWWND - Matt Pietrek 1995
  3. // FILE: WNDCLASS.H
  4. //==================================
  5.  
  6. #pragma pack(1)
  7.  
  8. typedef struct _USER_DGROUP_WNDCLASS
  9. {
  10.     DWORD   lpIntWndClass;  // 00h
  11.     WORD    hcNext;         // 04h
  12.     ATOM    classNameAtom;  // 06h
  13.     DWORD   style;          // 08h
  14. } USER_DGROUP_WNDCLASS, *PUSER_DGROUP_WNDCLASS;
  15.  
  16. typedef struct _INTWNDCLASS
  17. {
  18.     DWORD   cClsWnds;       // 00h
  19.     DWORD   lpfnWndProc;    // 04h
  20.     WORD    cbClsExtra;     // 08h
  21.     WORD    hModule;        // 0Ah
  22.     WORD    hIcon;          // 0Ch
  23.     WORD    hCursor;        // 0Eh
  24.     WORD    hBrBackground;  // 10h
  25.     DWORD   lpszMenuName;   // 12h
  26.     WORD    hIconSm;        // 16h
  27.     WORD    cbWndExtra;     // 18h
  28. } INTWNDCLASS, *PINTWNDCLASS, *LPINTWNDCLASS;
  29.  
  30. #pragma pack()
  31.